Xbasic

OBJECT.SPELL_CHECK Function

Syntax

.Spell_check(c scope [,c object ])

Arguments

scope

The scope of the spell check operation. Valid values include:

"table"
"record"
"field"
object

Character

Description

Displays the Spellchecker dialog for the specified object.

The <OBJECT>.SPELL_CHECK() method applies to:

Browses (for <OBJECT> use either the <BROWSE> pointer or the name of the browse)
Forms (for <OBJECT> use either the <FORM> pointer or the name of the form)

The <OBJECT>.SPELL_CHECK() method displays the object specified by <OBJECT> and the Spellchecker dialog box.

Example

The follow example displays the Spellchecker dialog box.

images/ME_OBJECT_SPELL_CHECK.gif
dim ptr as P
ptr = form.load("Customer Information")
ptr.Spell_Check("record")

Limitations

Desktop applications only.

See Also